Version

InterpolateWithSpeed(List<Point>,Single,List<Point>,List<Point>,List<Double>) Method

Sets the positions in a list of points to an interpolation between the given lists of points.
Syntax
'Declaration
 
Protected Overloads Shared Sub InterpolateWithSpeed( _
   ByVal ret As List(Of Point), _
   ByVal p As Single, _
   ByVal min As List(Of Point), _
   ByVal max As List(Of Point), _
   ByVal speedModifiers As List(Of Double) _
) 
protected static void InterpolateWithSpeed( 
   List<Point> ret,
   float p,
   List<Point> min,
   List<Point> max,
   List<double> speedModifiers
)

Parameters

ret
The points to position as an interpolation between min and max.
p
A number between 0 and 1 indicating the transition progress.
min
The minimum or starting points.
max
The maximum or ending points.
speedModifiers
A list of speeds to apply the interpolation at, where 1 is normal speed.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also